home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / ROM_Kernel_Manuals / Includes / clib / diskfont_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-27  |  980 b   |  29 lines

  1. #ifndef  CLIB_DISKFONT_PROTOS_H
  2. #define  CLIB_DISKFONT_PROTOS_H
  3. /*
  4. **    $Filename: clib/diskfont_protos.h $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 36.2 $
  7. **    $Date: 90/07/19 $
  8. **
  9. **    C prototypes. For use with 32 bit integers only.
  10. **
  11. **    (C) Copyright 1990-1999 Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14. #ifndef  DOS_DOS_H
  15. #include <dos/dos.h>
  16. #endif
  17. #ifndef  LIBRARIES_DISKFONT_H
  18. #include <libraries/diskfont.h>
  19. #endif
  20. struct TextFont *OpenDiskFont( struct TextAttr *textAttr );
  21. LONG AvailFonts( STRPTR buffer, long bufBytes, long flags );
  22. /*--- functions in V34 or higher (distributed as Release 1.3) ---*/
  23. struct FontContentsHeader *NewFontContents( BPTR fontsLock, STRPTR fontName );
  24. void DisposeFontContents( struct FontContentsHeader *fontContentsHeader );
  25. /*--- functions in V36 or higher (distributed as Release 2.0) ---*/
  26. struct DiskFontHeader *NewScaledDiskFont( struct TextFont *sourceFont,
  27.     struct TextAttr *destTextAttr );
  28. #endif     /* CLIB_DISKFONT_PROTOS_H */
  29.